home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 4
/
Apprentice-Release4.iso
/
Languages
/
LogoMation 1.1
/
Documentation ƒ
/
code tidbits
/
three rectangles, ⁄w functions
/
three rectangles, _w functions
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-01-08
|
283 b
|
14 lines
// square - a function to draw a square
Function square(size)
Up
Forward 30
Down
Repeat 4
Forward size
Right 90
// now draw three squares
square(5) // draw a 5 x 5 square
square(10) // draw a 10 x 10 square
square(20) // draw a 20 x 20 square